home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / macabuse / inc / ability.hpp next >
C/C++ Source or Header  |  1997-05-20  |  450b  |  26 lines

  1. #ifndef ABILITIES_HPP_
  2. #define ABILITIES_HPP_
  3.  
  4. enum ability
  5. {    start_hp,
  6.     start_accel,
  7.     stop_accel,
  8.         jump_xvel,
  9.     jump_yvel,
  10.     run_top_speed,
  11.     jump_top_speed,
  12.  
  13.     tint_color,
  14.     push_xrange,
  15.     walk_top_speed                  // keep as last entry!
  16. } ;
  17.  
  18. #define TOTAL_ABILITIES (walk_top_speed+1)
  19. extern char *ability_names[TOTAL_ABILITIES];
  20. long get_ability(int who, ability a);
  21. long get_ability_default(ability a);
  22.  
  23. #endif
  24.  
  25.  
  26.